home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-09-06 | 944 b | 49 lines | [TEXT/CWIE] |
- // DModalRadiosData -- data class for Everything
-
- #pragma once
-
- #include "AMSignaler.h"
-
-
- const long idRadioGroup2 = 'Rad2';
- const long idGroup2 = 'Gro2';
- const long idGraphic3 = 'Gra3';
- const long idBevel2 = 'Bev2';
- const long idText2 = 'Tex3';
-
- class AMEngine;
-
- //----------
- class DModalRadiosData : public AMSignaler {
- public:
- DModalRadiosData ();
- virtual ~DModalRadiosData ();
-
- public:
- void ReadFromFile (AMEngine* engine);
- void WriteToFile (AMEngine* engine);
-
- public:
- SInt16 GetRadioGroup2 () const;
- void SetRadioGroup2 (SInt16 inValue);
-
- SInt16 GetGroup2 () const;
- void SetGroup2 (SInt16 inValue);
-
- SInt16 GetGraphic3 () const;
- void SetGraphic3 (SInt16 inValue);
-
- SInt16 GetBevel2 () const;
- void SetBevel2 (SInt16 inValue);
-
- SInt16 GetText2 () const;
- void SetText2 (SInt16 inValue);
-
- protected:
- SInt16 mRadioGroup2;
- SInt16 mGroup2;
- SInt16 mGraphic3;
- SInt16 mBevel2;
- SInt16 mText2;
- };
-